52da4d57566020fb4f6031e1e54edd5b4812624d,tests/gdx-tests/src/com/badlogic/gdx/tests/BufferUtilsTest.java,BufferUtilsTest,create,#,37
Before Change
db.position(4);
BufferUtils.copy(new double[] {1, 2, 3, 4}, 0, db, 4);
checkFloat(db.get(), 1);
checkFloat(db.get(), 2);
checkFloat(db.get(), 3);
checkFloat(db.get(), 4);
After Change
checkFloat(fb.get(), 3);
checkFloat(fb.get(), 4);
if (Gdx.app.getType() != ApplicationType.WebGL) { // gwt throws: NYI: Numbers.doubleToRawLongBits
db.position(4);
BufferUtils.copy(new double[] {1, 2, 3, 4}, 0, db, 4);
checkFloat(db.get(), 1);
checkFloat(db.get(), 2);
checkFloat(db.get(), 3);
checkFloat(db.get(), 4);